* DHS Calendar Tutorial - Example 5. * Percent distribution of discontinuations of contraceptive methods in the five years * preceding the survey by main reason stated for discontinuation, according to specific method. * download the model dataset for individual women's recode: "ZZIR62FL.SAV" * the model datasets are available at http://dhsprogram.com/data/download-model-datasets.cfm . * change to a working directory where the data are stored * or add the full path to the 'get file' command below. cd "C:\Data\DHS_model". * open the dataset to use, and just keep the variables we are going to use. get file="ZZIR62FL.SAV" / keep caseid vcal$1 vcal$2 v000 v005 v007 v018 v021 v023. * set maximum number of loops high enough. Could be as many as the length of the calendar (80), so set it a bit higher. set mxloops = 100. * set length of calendar in a macro. define !vcal_len() 80 !enddefine. * Step 5.1. * create separate variables for each month of the calendar. vector method(!vcal_len A1). vector reason(!vcal_len A1). * loop through calendar creating separate variables for each month. loop #i = 1 to !vcal_len. + compute method(#i) = char.substr(vcal$1,#i,1). + compute reason(#i) = char.substr(vcal$2,#i,1). end loop. * Step 5.2. * restructure the new month by month variables into a long format where * the month is the unit of analysis, keeping just the variables that we need. varstocases /make method from method1 to method!vcal_len /make reason from reason1 to reason!vcal_len /index=i(!vcal_len) /keep=caseid v000 v005 v007 v018 v021 v023 /null=keep. Variables to Cases Notes |-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:23:11 | |-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| |Comments | | |--------------|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| |Input |Filter | | | |--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| | |Weight | | | |--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| | |Split File | | |-----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| |Syntax |varstocases /make method from method1 to method80 /make reason from reason1 to reason80 /index=i(80 ) /keep=caseid v000 v005 v007 v018 v021 v023 /null=keep.| |--------------|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time|00:00:01.04 | | |--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:01.04 | |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Generated Variables |------|------| |Name |Label | |------|------| |i || |------|------| |method|| |------|------| |reason|| |-------------| Processing Statistics |-------------|---| |Variables In |169| |-------------|---| |Variables Out|10 | |-----------------| * Step 5.3. * keep only the cases of discontinuations (reason is not blank) * in the five years preceding the survey. select if reason <> " " & i >= v018 & i <= v018+59. * Step 5.4. * convert the contraceptive methods to numeric codes, using the position in the string. compute method_num = char.index("123456789WNALCFEMS",method). * convert the missing code to 99. if (method = "?") method_num = 99. * now check if there are any codes that were not converted, and change these to -1. if (method_num = 0 & method <> " ") method_num = -1. * convert the reasons for discontinuation to numeric codes, using the position in the string. * ~ represents other survey specific codes. compute reason_num = char.index("123456789CFAD~~~~",reason). * now convert the special codes for other, don't know and missing to 96, 98, 99 respectively. compute special = char.index("W~K?",reason). if (special > 0) reason_num = special+95. * now check if there are any codes that were not converted, and change these to -1. if (reason_num = 0 & reason <> " ") reason_num = -1. execute. * clean up unneeded variable. delete variables special. * Step 5.5. * label the method variables and codes. variable labels method "Contraceptive method (alpha)". variable labels method_num "Contraceptive method". value labels method_num 0 "No method used" 1 "Pill" 2 "IUD" 3 "Injectable" 4 "Diaphragm" 5 "Condom" 6 "Female sterilization" 7 "Male sterilization" 8 "Periodic abstinence/Rhythm" 9 "Withdrawal" 10 "Other traditional methods" 11 "Norplant" 12 "Abstinence" 13 "Lactational amenorrhea method" 14 "Female condom" 15 "Foam and Jelly" 16 "Emergency contraception" 17 "Other modern method" 18 "Standard days method" 99 "Missing" -1 "***Unknown code not recoded***". * label the reason variables and codes. variable labels reason "Discontinuation code (alpha)". variable labels reason_num "Discontinuation code". value labels reason_num 0 "No discontinuation" 1 "Became pregnant while using" 2 "Wanted to become pregnant" 3 "Husband disapproved" 4 "Side effects" 5 "Health concerns" 6 "Access/availability" 7 "Wanted more effective method" 8 "Inconvenient to use" 9 "Infrequent sex/husband away" 10 "Cost" 11 "Fatalistic" 12 "Difficult to get pregnant/menopause" 13 "Marital dissolution" 96 "Other" 98 "Don't know" 99 "Missing" -1 "***Unknown code not recoded***". * Step 5.6. * Weight the data. compute wt = v005/1000000. weight by wt. * crosstab reason and method, either using a simple crosstab:. crosstabs tables = reason_num by method_num /cells=count column /count=asis. Crosstabs Notes |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:23:13 | |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Comments | | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Input |Filter | | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Weight |wt | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|946 | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Missing Value Handling|Definition of Missing |User-defined missing values are treated as missing. | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Cases Used |Statistics for each table are based on all the cases with valid data in the specified range(s) for all variables in each table.| |-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Syntax |crosstabs tables = reason_num by method_num /cells=count column /count=asis. | |----------------------|------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:00.00 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.01 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Dimensions Requested |2 | | |------------------------------|-------------------------------------------------------------------------------------------------------------------------------| | |Cells Available |131029 | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Case Processing Summary |-----------------------------------------------------------------|-------------------------------------------------| | |Cases | | |----------------|---------------|----------------| | |Valid |Missing |Total | | |--------|-------|-------|-------|--------|-------| | |N |Percent|N |Percent|N |Percent| |-----------------------------------------------------------------|--------|-------|-------|-------|--------|-------| |reason_num Discontinuation code * method_num Contraceptive method|1265.190|100.0% |0 |0.0% |1265.190|100.0% | |-------------------------------------------------------------------------------------------------------------------| reason_num Discontinuation code * method_num Contraceptive method Crosstabulation |------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------| | |method_num Contraceptive method |Total | | |-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------| | | |Pill |IUD |Injectable|Condom |Periodic abstinence/Rhythm|Withdrawal|Other traditional methods|Norplant|Lactational amenorrhea method|Other modern method| | |-------------------------------|-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| |reason_num Discontinuation code|Became pregnant while using |Count |36.963 |.000 |23.518 |5.482 |.000 |.809 |11.989 |.000 |4.193 |.000 |82.955 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|9.1% |0.0% |4.9% |4.5% |0.0% |11.5% |40.3% |0.0% |6.1% |0.0% |6.6% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Wanted to become pregnant |Count |119.703 |5.414 |131.537 |34.494 |3.023 |1.920 |8.867 |22.765 |9.621 |2.220 |339.564 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|29.6% |19.5% |27.3% |28.1% |14.0% |27.4% |29.8% |25.0% |14.1% |20.9% |26.8% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Husband disapproved |Count |14.037 |.882 |6.509 |9.508 |.000 |.000 |2.051 |4.666 |27.966 |.000 |65.619 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|3.5% |3.2% |1.4% |7.7% |0.0% |0.0% |6.9% |5.1% |40.8% |0.0% |5.2% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Side effects |Count |97.680 |20.234|233.756 |6.106 |6.684 |1.258 |1.452 |54.540 |2.473 |.000 |424.183 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|24.2% |72.8% |48.5% |5.0% |30.9% |17.9% |4.9% |60.0% |3.6% |0.0% |33.5% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Access/availability |Count |21.212 |.000 |5.543 |2.689 |.000 |.000 |.552 |.000 |.000 |.000 |29.996 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|5.2% |0.0% |1.2% |2.2% |0.0% |0.0% |1.9% |0.0% |0.0% |0.0% |2.4% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Wanted more effective method |Count |80.551 |.000 |35.993 |26.714 |4.465 |2.220 |.691 |.418 |1.732 |7.322 |160.106 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|19.9% |0.0% |7.5% |21.7% |20.6% |31.6% |2.3% |0.5% |2.5% |69.0% |12.7% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Inconvenient to use |Count |8.345 |1.258 |6.076 |18.159 |.809 |.000 |.747 |3.975 |.000 |.257 |39.627 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|2.1% |4.5% |1.3% |14.8% |3.7% |0.0% |2.5% |4.4% |0.0% |2.4% |3.1% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Infrequent sex/husband away |Count |5.206 |.000 |14.485 |1.209 |6.684 |.000 |.868 |.000 |6.340 |.000 |34.791 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|1.3% |0.0% |3.0% |1.0% |30.9% |0.0% |2.9% |0.0% |9.3% |0.0% |2.7% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Cost |Count |.287 |.000 |5.827 |4.857 |.000 |.000 |.000 |2.711 |.000 |.000 |13.682 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|0.1% |0.0% |1.2% |4.0% |0.0% |0.0% |0.0% |3.0% |0.0% |0.0% |1.1% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Fatalistic |Count |.000 |.000 |.732 |.000 |.000 |.000 |.000 |.000 |10.373 |.000 |11.105 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|0.0% |0.0% |0.2% |0.0% |0.0% |0.0% |0.0% |0.0% |15.2% |0.0% |0.9% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Difficult to get pregnant/menopause|Count |.538 |.000 |1.148 |.000 |.000 |.000 |.000 |.563 |.000 |.000 |2.249 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|0.1% |0.0% |0.2% |0.0% |0.0% |0.0% |0.0% |0.6% |0.0% |0.0% |0.2% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Other |Count |.566 |.000 |5.295 |.000 |.000 |.000 |1.766 |.000 |.000 |.000 |7.627 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|0.1% |0.0% |1.1% |0.0% |0.0% |0.0% |5.9% |0.0% |0.0% |0.0% |0.6% | | |-----------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |Missing |Count |19.161 |.000 |11.523 |13.623 |.000 |.809 |.738 |1.258 |5.765 |.809 |53.687 | | | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | | |% within method_num Contraceptive method|4.7% |0.0% |2.4% |11.1% |0.0% |11.5% |2.5% |1.4% |8.4% |7.6% |4.2% | |-------------------------------------------------------------------|----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| |Total |Count |404.248 |27.788|481.941 |122.841|21.664 |7.017 |29.721 |90.896 |68.464 |10.609 |1265.190| | |----------------------------------------|-------------------------------|------|----------|-------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|--------| | |% within method_num Contraceptive method|100.0% |100.0%|100.0% |100.0% |100.0% |100.0% |100.0% |100.0% |100.0% |100.0% |100.0% | |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| * or better, using the complex samples crosstab:. * turn off weighting as the complex samples procedures don't use the weight * from the 'weight by' command, but use it from the csplan instead. * this eliminates a confusing warning message about the weight being ignored. weight off. csplan analysis /plan file='Calendar.csaplan' /planvars analysisweight=wt /srsestimator type=wor /design strata=v023 cluster=v021 /estimator type=wr. Complex Samples: Plan Notes |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:23:13 | |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Comments | | |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Input |Filter | | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Weight | | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|946 | |---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Syntax |csplan analysis /plan file='Calendar.csaplan' /planvars analysisweight=wt /srsestimator type=wor /design strata=v023 cluster=v021 /estimator type=wr.| |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:00.00 | | |------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.01 | |--------------|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------| |Files Saved |Plan File |C:\Data\DHS_model\Calendar.csaplan | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Warnings |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |This procedure does not check the consistency of the working data file with the plan file. We recommend looking at the output table or the plan file to check consistency before performing selection or analysis.| |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| Summary |-------------------------------------------|-----------------------------------------| | |Stage 1 | |--------------------|--------------------|-|-----------------------------------------| |Design Variables |Stratification |1|V023 Stratification used in sample design| | |--------------------|-|-----------------------------------------| | |Cluster |1|V021 Primary sampling unit | |--------------------|----------------------|-----------------------------------------| |Analysis Information|Estimator Assumption |Sampling with replacement | |-------------------------------------------|-----------------------------------------| | | | |-------------------------------------------------------------------------------------| Plan File: C:\Data\DHS_model\Calendar.csaplan Weight Variable: wt SRS Estimator: Sampling without replacement cstabulate /plan file='Calendar.csaplan' /tables variables = reason_num by method_num /cells colpct. Complex Samples: Tables Notes |-----------------------------------------------------|---------------------------------------------------------------------------------------------------------| |Output Created |31-AUG-2017 01:23:13 | |-----------------------------------------------------|---------------------------------------------------------------------------------------------------------| |Comments | | |----------------------|------------------------------|---------------------------------------------------------------------------------------------------------| |Input |Filter | | | |------------------------------|---------------------------------------------------------------------------------------------------------| | |Weight | | | |------------------------------|---------------------------------------------------------------------------------------------------------| | |Split File | | | |------------------------------|---------------------------------------------------------------------------------------------------------| | |N of Rows in Working Data File|946 | | |------------------------------|---------------------------------------------------------------------------------------------------------| | |Plan File |C:\Data\DHS_model\Calendar.csaplan | |----------------------|------------------------------|---------------------------------------------------------------------------------------------------------| |Missing Value Handling|Definition of Missing |User-defined missing values among the strata, cluster, or subpopulation variables are treated as missing.| | |------------------------------|---------------------------------------------------------------------------------------------------------| | |Cases Used |Each table is based on all valid data for the tabulation variable(s) used in creating the table. | |-----------------------------------------------------|---------------------------------------------------------------------------------------------------------| |Syntax |cstabulate /plan file='Calendar.csaplan' /tables variables = reason_num by method_num /cells colpct. | |----------------------|------------------------------|---------------------------------------------------------------------------------------------------------| |Resources |Processor Time |00:00:00.02 | | |------------------------------|---------------------------------------------------------------------------------------------------------| | |Elapsed Time |00:00:00.02 | |---------------------------------------------------------------------------------------------------------------------------------------------------------------| reason_num Discontinuation code * method_num Contraceptive method |-------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |reason_num Discontinuation code |method_num Contraceptive method | | |-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | |Pill |IUD |Injectable|Condom|Periodic abstinence/Rhythm|Withdrawal|Other traditional methods|Norplant|Lactational amenorrhea method|Other modern method|Total | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Became pregnant while using |% within method_num Contraceptive method|Estimate |9.1% | |4.9% |4.5% | |11.5% |40.3% | |6.1% | |6.6% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|2.6% | |1.4% |3.3% | |10.5% |11.8% | |3.2% | |1.5% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Wanted to become pregnant |% within method_num Contraceptive method|Estimate |29.6% |19.5% |27.3% |28.1% |14.0% |27.4% |29.8% |25.0% |14.1% |20.9% |26.8% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|3.7% |8.8% |3.8% |8.6% |12.9% |23.5% |10.5% |6.5% |7.5% |19.4% |1.8% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Husband disapproved |% within method_num Contraceptive method|Estimate |3.5% |3.2% |1.4% |7.7% | | |6.9% |5.1% |40.8% | |5.2% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|1.3% |3.3% |0.6% |4.8% | | |4.9% |3.0% |17.8% | |1.8% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Side effects |% within method_num Contraceptive method|Estimate |24.2% |72.8% |48.5% |5.0% |30.9% |17.9% |4.9% |60.0% |3.6% | |33.5% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|3.5% |10.4% |3.0% |5.0% |13.8% |16.9% |3.2% |6.7% |2.5% | |2.5% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Access/availability |% within method_num Contraceptive method|Estimate |5.2% | |1.2% |2.2% | | |1.9% | | | |2.4% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|1.7% | |0.8% |1.6% | | |1.9% | | | |0.6% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Wanted more effective method |% within method_num Contraceptive method|Estimate |19.9% | |7.5% |21.7% |20.6% |31.6% |2.3% |0.5% |2.5% |69.0% |12.7% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|7.3% | |2.1% |10.0% |19.1% |25.5% |2.2% |0.5% |1.7% |21.1% |2.3% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Inconvenient to use |% within method_num Contraceptive method|Estimate |2.1% |4.5% |1.3% |14.8% |3.7% | |2.5% |4.4% | |2.4% |3.1% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.8% |4.6% |0.6% |6.8% |4.3% | |2.1% |2.3% | |2.7% |0.8% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Infrequent sex/husband away |% within method_num Contraceptive method|Estimate |1.3% | |3.0% |1.0% |30.9% | |2.9% | |9.3% | |2.7% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.7% | |1.5% |0.8% |13.8% | |3.0% | |7.6% | |0.8% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Cost |% within method_num Contraceptive method|Estimate |0.1% | |1.2% |4.0% | | | |3.0% | | |1.1% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.1% | |0.5% |2.5% | | | |2.6% | | |0.4% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Fatalistic |% within method_num Contraceptive method|Estimate | | |0.2% | | | | | |15.2% | |0.9% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error| | |0.2% | | | | | |11.9% | |0.7% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Difficult to get pregnant/menopause|% within method_num Contraceptive method|Estimate |0.1% | |0.2% | | | | |0.6% | | |0.2% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.1% | |0.2% | | | | |0.6% | | |0.1% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Other |% within method_num Contraceptive method|Estimate |0.1% | |1.1% | | | |5.9% | | | |0.6% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.1% | |0.5% | | | |4.3% | | | |0.3% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Missing |% within method_num Contraceptive method|Estimate |4.7% | |2.4% |11.1% | |11.5% |2.5% |1.4% |8.4% |7.6% |4.2% | | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|1.7% | |0.9% |3.8% | |10.5% |2.4% |1.4% |5.6% |8.1% |1.1% | |-----------------------------------|----------------------------------------|--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| |Total |% within method_num Contraceptive method|Estimate |100.0% |100.0%|100.0% |100.0%|100.0% |100.0% |100.0% |100.0% |100.0% |100.0% |100.0%| | | |--------------|-------------------------------|------|----------|------|--------------------------|----------|-------------------------|--------|-----------------------------|-------------------|------| | | |Standard Error|0.0% |0.0% |0.0% |0.0% |0.0% |0.0% |0.0% |0.0% |0.0% |0.0% |0.0% | |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|